home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / bind_iquery.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  59 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. #
  8. # This script replaces bind_bof.nes
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10329);
  14.  script_bugtraq_id(134);
  15.  script_version ("$Revision: 1.5 $");
  16.  script_cve_id("CVE-1999-0009");
  17.  
  18.  
  19.  name["english"] = "BIND iquery overflow";
  20.  script_name(english:name["english"]);
  21.  
  22.  desc["english"] = "
  23. The remote BIND server, according to its
  24. version number, is vulnerable to an inverse
  25. query overflow.
  26.  
  27. Solution : upgrade to bind 8.1.2 or 4.9.7
  28. Risk factor : High";
  29.  
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Checks the remote BIND version";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  
  40.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  41.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  42.  family["english"] = "Gain root remotely";
  43.  family["francais"] = "Passer root α distance";
  44.  script_family(english:family["english"], francais:family["francais"]);
  45.  
  46.  script_dependencie("bind_version.nasl");
  47.  script_require_keys("bind/version");
  48.  exit(0);
  49. }
  50.  
  51. vers = get_kb_item("bind/version");
  52. if(!vers)exit(0);
  53. if(ereg(string:vers,
  54.      pattern:"^8\.((0\.*)|(1\.[0-1])).*"))security_hole(53);
  55.  
  56. if(ereg(string:vers,
  57.         pattern:"^4\.([0-8]|9\.[0-6]).*"))security_hole(53);
  58.  
  59.